Skip to content

Simplify semantics of private fields; add self syntax for classes#79

Merged
crusso merged 3 commits intomasterfrom
private
Nov 26, 2018
Merged

Simplify semantics of private fields; add self syntax for classes#79
crusso merged 3 commits intomasterfrom
private

Conversation

@rossberg
Copy link
Copy Markdown
Contributor

Change semantics of private specifier such that it is per-instance. This simplifies its semantics to essentially a scoping restriction. It also is the only semantics that actually is implementable for actors.

At the same time, add syntax for binding "this" to classes. This was necessary to be able to rewrite some of the examples previously using per-class private.

@rossberg rossberg requested review from crusso and nomeata November 22, 2018 12:16
@nomeata
Copy link
Copy Markdown
Contributor

nomeata commented Nov 22, 2018

Sounds good to me what you describe, and also the changes to compile.ml. It looks like you deleted some test output that (wasm-run.ok files) that are actually needed, so Jenkins is unhappy.

@rossberg
Copy link
Copy Markdown
Contributor Author

Hm, seems like I don't have access rights to see the Jenkins failures. But the only .ok files I removed are the ones for the dot-private test, which I also removed (because the feature it tests no longer exists). Do I have to adjust something else?

@crusso
Copy link
Copy Markdown
Contributor

crusso commented Nov 22, 2018

I'm fine with this. I also don't have access to the Jenkins output. Are the tests running ok locally?

@rossberg
Copy link
Copy Markdown
Contributor Author

Yes, I don't see any local failures.

@crusso
Copy link
Copy Markdown
Contributor

crusso commented Nov 22, 2018

Did you run the test in test\run-dfinity too? I don't think make in test does that.

@rossberg
Copy link
Copy Markdown
Contributor Author

The only DFN failures I see are the known ones using Nop, because Hero can't handle that yet.

@crusso
Copy link
Copy Markdown
Contributor

crusso commented Nov 22, 2018

https://github.com/dfinity-lab/ops-in-nix/blob/master/VPN.md are the instructions to get access, but with Thanksgiving on your best may be Maciej

@nomeata
Copy link
Copy Markdown
Contributor

nomeata commented Nov 23, 2018

I thought i removed the use of Nop from our master. Is your branch up-to-date?

@nomeata
Copy link
Copy Markdown
Contributor

nomeata commented Nov 23, 2018

Also, the test output files that your pull request removes (see the diff) are from run/, so this is independent of dvm. Can't tell from afar what went wrong.

Does running make accept in run/ add or change any files?

@nomeata
Copy link
Copy Markdown
Contributor

nomeata commented Nov 23, 2018

But the only .ok files I removed are the ones for the dot-private test, which I also removed (because the feature it tests no longer exists).

I don't think you remove any tests. Check the diff!

@rossberg
Copy link
Copy Markdown
Contributor Author

@nomeata, I just tried rebasing on latest master, still seeing the nop errors.

test/run/this-dot-private.as got removed in this PR, see here.

@rossberg
Copy link
Copy Markdown
Contributor Author

@crusso, funny enough, I can't access those instructions either.

@rossberg
Copy link
Copy Markdown
Contributor Author

Oh, I see, document was moved.

@paulyoung
Copy link
Copy Markdown
Contributor

Some minor feedback after using these changes is that once I started using the built-in self syntax I had to use like pretty pervasively. I was expecting this based on the diff here and didn't think it was so bad until I had to start using it in return values as well.

In places where I had intended to use the built-in self syntax I'm currently doing this type of thing instead:

class Foo<A>(value_ : A) {
  value = value_;
  private self = Foo<A>(value);

  bar = func () {
    baz<A>(self);
  };
};

let baz = func <A>(foo : Foo<A>) {};

My sense is that this might not be a good idea (maybe semantically it's fine, and the overhead is minimal?) but either way I'd like to better understand the implications of that.

If it turns out to be fine, could the built in self syntax be sugar for what I'm doing above to avoid the need to use like?

@paulyoung
Copy link
Copy Markdown
Contributor

Contrived example, based on the above.

class Foo<A>(value_ : A) {
  value = value_;
  private self = Foo<A>(value);

  bar = func () : Foo<A> {
    baz<A>(self);
  };
};

/* Basically the identity function */
let baz = func <A>(foo : Foo<A>) : Foo<A> {
  foo;
};

vs

class Foo<A>(value_ : A) = self {
  value = value_;

  bar = func () : like Foo<A> {
    baz<A>(self);
  };
};

/* Basically the identity function */
let baz = func <A>(foo : like Foo<A>) : like Foo<A> {
  foo;
};

@paulyoung
Copy link
Copy Markdown
Contributor

Actually, that's not even what I'm doing because self would get out of sync.

I'm making a local "self" at function call sites like this:

class Foo<A>(value_ : A) {
  value = value_;

  bar = func () {
    let self = Foo<A>(value);
    baz<A>(self);
  };
};

let baz = func <A>(foo : Foo<A>) {};

@nomeata nomeata deleted the private branch November 26, 2018 21:15
dfinity-bot added a commit that referenced this pull request Jul 14, 2020
## Changelog for motoko-base:
Branch: next-moc
Commits: [caffeinelabs/motoko-base@d1d0e694...b0381a88](caffeinelabs/motoko-base@d1d0e69...b0381a8)

* [`0631fe40`](caffeinelabs/motoko-base@0631fe4) Prepares open sourcing ([dfinity-lab/motoko-base⁠#79](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/79))
* [`c1c116aa`](caffeinelabs/motoko-base@c1c116a) Sets up unit tests to use the `matchers` library ([dfinity-lab/motoko-base⁠#106](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/106))
* [`8d074912`](caffeinelabs/motoko-base@8d07491) make conversions public; fix doc ([dfinity-lab/motoko-base⁠#113](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/113))
* [`e78f49a4`](caffeinelabs/motoko-base@e78f49a) Public release: Remove old subdir of examples ([dfinity-lab/motoko-base⁠#114](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/114))
* [`2c9d8286`](caffeinelabs/motoko-base@2c9d828) Small fix for open source ([dfinity-lab/motoko-base⁠#115](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/115))
* [`0ca6c694`](caffeinelabs/motoko-base@0ca6c69) Adds filterMap for arrays ([dfinity-lab/motoko-base⁠#101](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/101))
* [`754eb858`](caffeinelabs/motoko-base@754eb85) Readme: Fix vessel instructions ([dfinity-lab/motoko-base⁠#116](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/116))
* [`ed4fcfb4`](caffeinelabs/motoko-base@ed4fcfb) adds note about requiring `vessel` to run the tests ([dfinity-lab/motoko-base⁠#118](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/118))
* [`d04a0e21`](caffeinelabs/motoko-base@d04a0e2) Cleans up a few comments in List ([dfinity-lab/motoko-base⁠#119](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/119))
* [`fd81ac57`](caffeinelabs/motoko-base@fd81ac5) Adds some documentation to the `HashMap` class. ([dfinity-lab/motoko-base⁠#121](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/121))
* [`d0354489`](caffeinelabs/motoko-base@d035448) Remove WordN.toInt ([dfinity-lab/motoko-base⁠#125](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/125))
mergify bot pushed a commit that referenced this pull request Jul 14, 2020
## Changelog for motoko-base:
Branch: next-moc
Commits: [caffeinelabs/motoko-base@d1d0e694...b0381a88](caffeinelabs/motoko-base@d1d0e69...b0381a8)

* [`0631fe40`](caffeinelabs/motoko-base@0631fe4) Prepares open sourcing ([dfinity-lab/motoko-base⁠#79](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/79))
* [`c1c116aa`](caffeinelabs/motoko-base@c1c116a) Sets up unit tests to use the `matchers` library ([dfinity-lab/motoko-base⁠#106](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/106))
* [`8d074912`](caffeinelabs/motoko-base@8d07491) make conversions public; fix doc ([dfinity-lab/motoko-base⁠#113](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/113))
* [`e78f49a4`](caffeinelabs/motoko-base@e78f49a) Public release: Remove old subdir of examples ([dfinity-lab/motoko-base⁠#114](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/114))
* [`2c9d8286`](caffeinelabs/motoko-base@2c9d828) Small fix for open source ([dfinity-lab/motoko-base⁠#115](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/115))
* [`0ca6c694`](caffeinelabs/motoko-base@0ca6c69) Adds filterMap for arrays ([dfinity-lab/motoko-base⁠#101](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/101))
* [`754eb858`](caffeinelabs/motoko-base@754eb85) Readme: Fix vessel instructions ([dfinity-lab/motoko-base⁠#116](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/116))
* [`ed4fcfb4`](caffeinelabs/motoko-base@ed4fcfb) adds note about requiring `vessel` to run the tests ([dfinity-lab/motoko-base⁠#118](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/118))
* [`d04a0e21`](caffeinelabs/motoko-base@d04a0e2) Cleans up a few comments in List ([dfinity-lab/motoko-base⁠#119](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/119))
* [`fd81ac57`](caffeinelabs/motoko-base@fd81ac5) Adds some documentation to the `HashMap` class. ([dfinity-lab/motoko-base⁠#121](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/121))
* [`d0354489`](caffeinelabs/motoko-base@d035448) Remove WordN.toInt ([dfinity-lab/motoko-base⁠#125](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/125))
dfinity-bot added a commit that referenced this pull request Oct 28, 2020
## Changelog for candid:
Branch: 
Commits: [dfinity/candid@a1dcbad4...3e3ad95a](dfinity/candid@a1dcbad...3e3ad95)

* [`119703ba`](dfinity/candid@119703b) [Spec] Relax LEB128 decoding ([dfinity/candid⁠#79](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/79))
* [`10f08432`](dfinity/candid@10f0843) Update prim.test.did
* [`b2524816`](dfinity/candid@b252481) parser for test suite ([dfinity/candid⁠#78](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/78))
* [`71bf6e76`](dfinity/candid@71bf6e7) release 0.5.2 ([dfinity/candid⁠#80](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/80))
* [`b9f387e3`](dfinity/candid@b9f387e) test suite for JS ([dfinity/candid⁠#81](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/81))
* [`9e5dc775`](dfinity/candid@9e5dc77) Release ([dfinity/candid⁠#82](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/82))
* [`1df9d2d7`](dfinity/candid@1df9d2d) more candid test data ([dfinity/candid⁠#83](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/83))
* [`9e4156d9`](dfinity/candid@9e4156d) fix newtype ([dfinity/candid⁠#85](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/85))
* [`6880a430`](dfinity/candid@6880a43) display for types ([dfinity/candid⁠#86](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/86))
* [`04b1b068`](dfinity/candid@04b1b06) release ([dfinity/candid⁠#87](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/87))
* [`117c6436`](dfinity/candid@117c643) Refactor Lexer ([dfinity/candid⁠#89](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/89))
* [`0a5789f9`](dfinity/candid@0a5789f) fix value pretty printer ([dfinity/candid⁠#92](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/92))
* [`9f35a5aa`](dfinity/candid@9f35a5a) refactor error ([dfinity/candid⁠#94](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/94))
* [`2e742927`](dfinity/candid@2e74292) Parse annvals in textual format ([dfinity/candid⁠#93](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/93))
* [`0a144c79`](dfinity/candid@0a144c7) use principal from ic-types ([dfinity/candid⁠#84](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/84))
* [`01412b14`](dfinity/candid@01412b1) release ([dfinity/candid⁠#95](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/95))
* [`f540df54`](dfinity/candid@f540df5) release ([dfinity/candid⁠#98](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/98))
* [`798675d8`](dfinity/candid@798675d) Add generic functions to encode/decode around a tuple ([dfinity/candid⁠#99](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/99))
* [`0d26e568`](dfinity/candid@0d26e56) release ([dfinity/candid⁠#100](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/100))
* [`191b6f1f`](dfinity/candid@191b6f1) Reset record_nesting_depth after each value ([dfinity/candid⁠#101](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/101))
* [`8e7be65d`](dfinity/candid@8e7be65) fix record ([dfinity/candid⁠#103](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/103))
* [`159533b2`](dfinity/candid@159533b) Update construct.test.did
* [`a6ea0991`](dfinity/candid@a6ea099) add service initialization parameters ([dfinity/candid⁠#88](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/88))
* [`3a1f56fa`](dfinity/candid@3a1f56f) refactor: sort dependencies and add traits for error types ([dfinity/candid⁠#105](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/105))
* [`89df78ee`](dfinity/candid@89df78e) support service constructor ([dfinity/candid⁠#106](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/106))
* [`738d5ed4`](dfinity/candid@738d5ed) fix for actor class codegen ([dfinity/candid⁠#107](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/107))
* [`97ba7a0f`](dfinity/candid@97ba7a0) export init args in js ([dfinity/candid⁠#108](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/108))
* [`d4e00adc`](dfinity/candid@d4e00ad) fix js init export ([dfinity/candid⁠#109](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/109))
* [`c1662abe`](dfinity/candid@c1662ab) [spec] Reverse subtyping ([dfinity/candid⁠#110](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/110))
* [`713595be`](dfinity/candid@713595b) The “reverse variant extension rule” is redundand ([dfinity/candid⁠#113](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/113))
* [`79d49a01`](dfinity/candid@79d49a0) Spec: Opt decoding also from non-opt values ([dfinity/candid⁠#114](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/114))
* [`2cfc0ecf`](dfinity/candid@2cfc0ec) improve pretty printing for values ([dfinity/candid⁠#116](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/116))
* [`8fafe345`](dfinity/candid@8fafe34) Un-rename Soundness document ([dfinity/candid⁠#115](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/115))
* [`8e6fc502`](dfinity/candid@8e6fc50) Bump spec version ([dfinity/candid⁠#112](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/112))
* [`7cedebcb`](dfinity/candid@7cedebc) fix clippy ([dfinity/candid⁠#117](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/117))
* [`a732a639`](dfinity/candid@a732a63) Candid UI Canister ([dfinity/candid⁠#111](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/111))
* [`d97b271c`](dfinity/candid@d97b271) disable pretty printing for large vectors ([dfinity/candid⁠#118](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/118))
* [`aceb7f92`](dfinity/candid@aceb7f9) derive candid type for functions ([dfinity/candid⁠#119](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/119))
* [`c3dc0ad7`](dfinity/candid@c3dc0ad) rename derived code for CDK ([dfinity/candid⁠#120](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/120))
* [`d1f8de7d`](dfinity/candid@d1f8de7) release ([dfinity/candid⁠#121](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/121))
* [`3e3ad95a`](dfinity/candid@3e3ad95) remove multi-line string in test suites ([dfinity/candid⁠#125](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/125))
dfinity-bot added a commit that referenced this pull request May 31, 2022
## Changelog for ic-hs:
Branch: master
Commits: [dfinity/ic-hs@eef711d1...91832636](dfinity/ic-hs@eef711d...9183263)

* [`4920ec29`](dfinity/ic-hs@4920ec2) System API for ECDSA signing ([dfinity/ic-hs⁠#79](https://github.com/dfinity/ic-hs/issues/79))
* [`47b7f0b6`](dfinity/ic-hs@47b7f0b) Mirror changes of the spec related to the canister HTTP calls ([dfinity/ic-hs⁠#85](https://github.com/dfinity/ic-hs/issues/85))
* [`91832636`](dfinity/ic-hs@9183263) upgrade nixpkgs to release-22.05 ([dfinity/ic-hs⁠#76](https://github.com/dfinity/ic-hs/issues/76))
mergify bot pushed a commit that referenced this pull request May 31, 2022
## Changelog for ic-hs:
Branch: master
Commits: [dfinity/ic-hs@eef711d1...91832636](dfinity/ic-hs@eef711d...9183263)

* [`4920ec29`](dfinity/ic-hs@4920ec2) System API for ECDSA signing ([dfinity/ic-hs⁠#79](https://github.com/dfinity/ic-hs/issues/79))
* [`47b7f0b6`](dfinity/ic-hs@47b7f0b) Mirror changes of the spec related to the canister HTTP calls ([dfinity/ic-hs⁠#85](https://github.com/dfinity/ic-hs/issues/85))
* [`91832636`](dfinity/ic-hs@9183263) upgrade nixpkgs to release-22.05 ([dfinity/ic-hs⁠#76](https://github.com/dfinity/ic-hs/issues/76))
dfinity-bot added a commit that referenced this pull request Jan 10, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...bdc074a8](dfinity/ic-wasm@48db35e...bdc074a)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
dfinity-bot added a commit that referenced this pull request Jan 11, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...72d2bc28](dfinity/ic-wasm@48db35e...72d2bc2)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
dfinity-bot added a commit that referenced this pull request Jan 14, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...707016c2](dfinity/ic-wasm@48db35e...707016c)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
dfinity-bot added a commit that referenced this pull request Jan 18, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...707016c2](dfinity/ic-wasm@48db35e...707016c)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
dfinity-bot added a commit that referenced this pull request Jan 21, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...707016c2](dfinity/ic-wasm@48db35e...707016c)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
dfinity-bot added a commit that referenced this pull request Jan 22, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...707016c2](dfinity/ic-wasm@48db35e...707016c)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
dfinity-bot added a commit that referenced this pull request Jan 23, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...707016c2](dfinity/ic-wasm@48db35e...707016c)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
dfinity-bot added a commit that referenced this pull request Jan 24, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...707016c2](dfinity/ic-wasm@48db35e...707016c)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
dfinity-bot added a commit that referenced this pull request Jan 28, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...41bb2f59](dfinity/ic-wasm@48db35e...41bb2f5)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
* [`41bb2f59`](dfinity/ic-wasm@41bb2f5) chore: Allow sign_with_schnorr ([dfinity/ic-wasm⁠#83](https://github.com/dfinity/ic-wasm/issues/83))
dfinity-bot added a commit that referenced this pull request Jan 29, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...4c52e75c](dfinity/ic-wasm@48db35e...4c52e75)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
* [`41bb2f59`](dfinity/ic-wasm@41bb2f5) chore: Allow sign_with_schnorr ([dfinity/ic-wasm⁠#83](https://github.com/dfinity/ic-wasm/issues/83))
* [`4c52e75c`](dfinity/ic-wasm@4c52e75) fix: Feature wasm-opt ([dfinity/ic-wasm⁠#84](https://github.com/dfinity/ic-wasm/issues/84))
dfinity-bot added a commit that referenced this pull request Jan 30, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...4c52e75c](dfinity/ic-wasm@48db35e...4c52e75)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
* [`41bb2f59`](dfinity/ic-wasm@41bb2f5) chore: Allow sign_with_schnorr ([dfinity/ic-wasm⁠#83](https://github.com/dfinity/ic-wasm/issues/83))
* [`4c52e75c`](dfinity/ic-wasm@4c52e75) fix: Feature wasm-opt ([dfinity/ic-wasm⁠#84](https://github.com/dfinity/ic-wasm/issues/84))
dfinity-bot added a commit that referenced this pull request Feb 5, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...4c52e75c](dfinity/ic-wasm@48db35e...4c52e75)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
* [`41bb2f59`](dfinity/ic-wasm@41bb2f5) chore: Allow sign_with_schnorr ([dfinity/ic-wasm⁠#83](https://github.com/dfinity/ic-wasm/issues/83))
* [`4c52e75c`](dfinity/ic-wasm@4c52e75) fix: Feature wasm-opt ([dfinity/ic-wasm⁠#84](https://github.com/dfinity/ic-wasm/issues/84))
dfinity-bot added a commit that referenced this pull request Feb 7, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...4c52e75c](dfinity/ic-wasm@48db35e...4c52e75)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
* [`41bb2f59`](dfinity/ic-wasm@41bb2f5) chore: Allow sign_with_schnorr ([dfinity/ic-wasm⁠#83](https://github.com/dfinity/ic-wasm/issues/83))
* [`4c52e75c`](dfinity/ic-wasm@4c52e75) fix: Feature wasm-opt ([dfinity/ic-wasm⁠#84](https://github.com/dfinity/ic-wasm/issues/84))
dfinity-bot added a commit that referenced this pull request Feb 18, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...4c52e75c](dfinity/ic-wasm@48db35e...4c52e75)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
* [`41bb2f59`](dfinity/ic-wasm@41bb2f5) chore: Allow sign_with_schnorr ([dfinity/ic-wasm⁠#83](https://github.com/dfinity/ic-wasm/issues/83))
* [`4c52e75c`](dfinity/ic-wasm@4c52e75) fix: Feature wasm-opt ([dfinity/ic-wasm⁠#84](https://github.com/dfinity/ic-wasm/issues/84))
dfinity-bot added a commit that referenced this pull request Feb 24, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...4c52e75c](dfinity/ic-wasm@48db35e...4c52e75)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
* [`41bb2f59`](dfinity/ic-wasm@41bb2f5) chore: Allow sign_with_schnorr ([dfinity/ic-wasm⁠#83](https://github.com/dfinity/ic-wasm/issues/83))
* [`4c52e75c`](dfinity/ic-wasm@4c52e75) fix: Feature wasm-opt ([dfinity/ic-wasm⁠#84](https://github.com/dfinity/ic-wasm/issues/84))
dfinity-bot added a commit that referenced this pull request Mar 4, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...4c52e75c](dfinity/ic-wasm@48db35e...4c52e75)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
* [`41bb2f59`](dfinity/ic-wasm@41bb2f5) chore: Allow sign_with_schnorr ([dfinity/ic-wasm⁠#83](https://github.com/dfinity/ic-wasm/issues/83))
* [`4c52e75c`](dfinity/ic-wasm@4c52e75) fix: Feature wasm-opt ([dfinity/ic-wasm⁠#84](https://github.com/dfinity/ic-wasm/issues/84))
dfinity-bot added a commit that referenced this pull request Mar 7, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...4c52e75c](dfinity/ic-wasm@48db35e...4c52e75)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
* [`41bb2f59`](dfinity/ic-wasm@41bb2f5) chore: Allow sign_with_schnorr ([dfinity/ic-wasm⁠#83](https://github.com/dfinity/ic-wasm/issues/83))
* [`4c52e75c`](dfinity/ic-wasm@4c52e75) fix: Feature wasm-opt ([dfinity/ic-wasm⁠#84](https://github.com/dfinity/ic-wasm/issues/84))
dfinity-bot added a commit that referenced this pull request Mar 8, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...4c52e75c](dfinity/ic-wasm@48db35e...4c52e75)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
* [`41bb2f59`](dfinity/ic-wasm@41bb2f5) chore: Allow sign_with_schnorr ([dfinity/ic-wasm⁠#83](https://github.com/dfinity/ic-wasm/issues/83))
* [`4c52e75c`](dfinity/ic-wasm@4c52e75) fix: Feature wasm-opt ([dfinity/ic-wasm⁠#84](https://github.com/dfinity/ic-wasm/issues/84))
dfinity-bot added a commit that referenced this pull request Mar 17, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...4c52e75c](dfinity/ic-wasm@48db35e...4c52e75)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
* [`41bb2f59`](dfinity/ic-wasm@41bb2f5) chore: Allow sign_with_schnorr ([dfinity/ic-wasm⁠#83](https://github.com/dfinity/ic-wasm/issues/83))
* [`4c52e75c`](dfinity/ic-wasm@4c52e75) fix: Feature wasm-opt ([dfinity/ic-wasm⁠#84](https://github.com/dfinity/ic-wasm/issues/84))
dfinity-bot added a commit that referenced this pull request Mar 20, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...4c52e75c](dfinity/ic-wasm@48db35e...4c52e75)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
* [`41bb2f59`](dfinity/ic-wasm@41bb2f5) chore: Allow sign_with_schnorr ([dfinity/ic-wasm⁠#83](https://github.com/dfinity/ic-wasm/issues/83))
* [`4c52e75c`](dfinity/ic-wasm@4c52e75) fix: Feature wasm-opt ([dfinity/ic-wasm⁠#84](https://github.com/dfinity/ic-wasm/issues/84))
dfinity-bot added a commit that referenced this pull request Mar 22, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...4c52e75c](dfinity/ic-wasm@48db35e...4c52e75)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
* [`41bb2f59`](dfinity/ic-wasm@41bb2f5) chore: Allow sign_with_schnorr ([dfinity/ic-wasm⁠#83](https://github.com/dfinity/ic-wasm/issues/83))
* [`4c52e75c`](dfinity/ic-wasm@4c52e75) fix: Feature wasm-opt ([dfinity/ic-wasm⁠#84](https://github.com/dfinity/ic-wasm/issues/84))
dfinity-bot added a commit that referenced this pull request Mar 27, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...4c52e75c](dfinity/ic-wasm@48db35e...4c52e75)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
* [`41bb2f59`](dfinity/ic-wasm@41bb2f5) chore: Allow sign_with_schnorr ([dfinity/ic-wasm⁠#83](https://github.com/dfinity/ic-wasm/issues/83))
* [`4c52e75c`](dfinity/ic-wasm@4c52e75) fix: Feature wasm-opt ([dfinity/ic-wasm⁠#84](https://github.com/dfinity/ic-wasm/issues/84))
mergify bot pushed a commit that referenced this pull request Mar 30, 2025
## Changelog for ic-wasm:
Branch: main
Commits: [dfinity/ic-wasm@48db35ee...4c52e75c](dfinity/ic-wasm@48db35e...4c52e75)

* [`bdc074a8`](dfinity/ic-wasm@bdc074a) fix: limit_resource works with wasm64 ([dfinity/ic-wasm⁠#79](https://github.com/dfinity/ic-wasm/issues/79))
* [`72d2bc28`](dfinity/ic-wasm@72d2bc2) Validate the manipulated module before emitting it and give a warning if that fails.  ([dfinity/ic-wasm⁠#80](https://github.com/dfinity/ic-wasm/issues/80))
* [`707016c2`](dfinity/ic-wasm@707016c) Build musl target with docker alpine in release workflow ([dfinity/ic-wasm⁠#1](https://github.com/dfinity/ic-wasm/issues/1)) ([dfinity/ic-wasm⁠#82](https://github.com/dfinity/ic-wasm/issues/82))
* [`41bb2f59`](dfinity/ic-wasm@41bb2f5) chore: Allow sign_with_schnorr ([dfinity/ic-wasm⁠#83](https://github.com/dfinity/ic-wasm/issues/83))
* [`4c52e75c`](dfinity/ic-wasm@4c52e75) fix: Feature wasm-opt ([dfinity/ic-wasm⁠#84](https://github.com/dfinity/ic-wasm/issues/84))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants